home *** CD-ROM | disk | FTP | other *** search
/ Champak 52 / Volume 52 - JOGO DISK .iso / Games / dancing_princess.swf / scripts / frame_3 / DoAction.as
Text File  |  2007-09-26  |  491b  |  28 lines

  1. stop();
  2. game_start_bt.onRollOver = function()
  3. {
  4.    so1.start(0,1);
  5.    this._xscale = 105;
  6.    this._yscale = 105;
  7. };
  8. game_start_bt.onRollOut = function()
  9. {
  10.    this._xscale = 100;
  11.    this._yscale = 100;
  12. };
  13. game_start_bt.onPress = function()
  14. {
  15.    so1.start(0,1);
  16.    this.gotoAndStop(2);
  17. };
  18. game_start_bt.onRelease = function()
  19. {
  20.    this.gotoAndStop(1);
  21.    gotoAndStop(4);
  22. };
  23. game_start_bt.onReleaseOutside = function()
  24. {
  25.    this.gotoAndStop(1);
  26.    gotoAndStop(4);
  27. };
  28.